home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / Examples / NX_Invaders / NXIGameBrain.h < prev    next >
Text File  |  1995-06-12  |  576b  |  19 lines

  1.  
  2. // This handles a lot of the logic of the game; it has application delegate
  3. // methods to deal with start up and shut down of the application.  It also
  4. // has some window delegate methods that work in conjunction with the game
  5. // window (window with the playing field).  It starts and stops the game,
  6. // does pausing, makes sure initialization is done properly, moves from
  7. // level to level, and tracks the score along with various bonuses.
  8.  
  9. #import <gamekit/gamekit.h>     // superclass, etc.
  10.  
  11. @interface NXIGameBrain:GameBrain
  12. {
  13. }
  14.  
  15. - makeGameInfo;
  16. - appDidInit:sender    ;
  17.  
  18. @end
  19.